home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1995 April / Internet Tools.iso / dos_win / winsock / maillist / 94-04.Z / 94-04 / text0040.txt < prev    next >
Encoding:
Text File  |  1994-04-30  |  6.0 KB  |  181 lines

  1. In article <ashok.593.2D9D0326@biochemistry.cwru.edu> ashok@biochemistry.cwru.edu (Ashok Aiyar) writes:
  2. >From: ashok@biochemistry.cwru.edu (Ashok Aiyar)
  3. >Subject: Re: HOSTS conflicts with winsock clients
  4. >Date: Sat, 2 Apr 1994 05:31:19 GMT
  5.  
  6. >In article <2nirat$fji@sugar.NeoSoft.COM> grosin@sugar.NeoSoft.COM (Gary Rosin) writes:
  7.  
  8. >>In article <ashok.592.2D9CEC71@biochemistry.cwru.edu>,
  9. >>Ashok Aiyar <ashok@biochemistry.cwru.edu> wrote:
  10. >>>sam.neosoft.com is 198.64.6.17
  11. >>>
  12.  
  13. >>Thanks, I'll try that.  BTW, how did you know the IP address for 
  14. >>sam.neosoft.com (yet another newbie question)?
  15.  
  16. >Using NSLOOKUP.  Here is actual output.
  17.  
  18. >nslookup
  19. >Default Server:  ns.CWRU.Edu
  20. >Address:  129.22.4.1
  21.  
  22. >> sam.neosoft.com
  23. >Server:  ns.CWRU.Edu
  24. >Address:  129.22.4.1
  25.  
  26. >Non-authoritative answer:
  27. >Name:    sam.neosoft.com
  28. >Address:  198.64.6.17
  29.  
  30. There is also a winsock app 'ws_ping' that will allow you to look up ip 
  31. addresses.  It is at 129.29.64.246 in the /pub/msdos directory.
  32.  
  33. Jason
  34. From news@bigblue.oit.unc.edu Wed Apr  2 03:05:01 1994
  35. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  36.           id AA03140; Sat, 2 Apr 1994 15:12:16 -0500
  37. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  38.           id AA19502; Sat, 2 Apr 1994 14:59:35 -0500
  39. Received: from GATEWAY by bigblue with netnews
  40.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  41. To: winsock@sunsite.unc.edu
  42. Date: 2 Apr 1994 09:05:01 -0600
  43. From: grosin@sugar.NeoSoft.COM (Gary Rosin)
  44. Message-Id: <2nk1it$1a3@sugar.NeoSoft.COM>
  45. Organization: NeoSoft Internet Services   +1 713 684 5969
  46. Sender: ses
  47. References: <ashok.592.2D9CEC71@biochemistry.cwru.edu>, <2nirat$fji@sugar.NeoSoft.COM>, <ashok.593.2D9D0326@biochemistry.cwru.edu>
  48. Subject: Re: HOSTS conflicts with winsock clients
  49.  
  50. In article <ashok.593.2D9D0326@biochemistry.cwru.edu>,
  51. Ashok Aiyar <ashok@biochemistry.cwru.edu> wrote  (EDITED):
  52. >In article <2nirat$fji@sugar.NeoSoft.COM> 
  53. >grosin@sugar.NeoSoft.COM (Gary Rosin) writes (EDITED):
  54. >
  55. >>            [H]ow did you know the IP address for 
  56. >>sam.neosoft.com (yet another newbie question)?
  57. >
  58. >Using NSLOOKUP.  
  59.  
  60. I used NSLOOKUP to check the IP addresses for the various servers 
  61. associated with my SLIP server & discovered that several separate 
  62. Internet addresses are aliases for a single server.
  63.  
  64. Will the HOSTS file handle aliases also?  How--just entering them as 
  65. other addresses?  
  66.  
  67.  
  68. -- 
  69. *******************************************************************
  70. Gary S. Rosin                   grosin@sugar.neosoft.com
  71. *******************************************************************
  72. From news@bigblue.oit.unc.edu Wed Apr  2 00:35:08 1994
  73. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  74.           id AA05496; Sat, 2 Apr 1994 15:42:14 -0500
  75. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  76.           id AA19474; Sat, 2 Apr 1994 15:38:38 -0500
  77. Received: from GATEWAY by bigblue with netnews
  78.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  79. To: winsock@sunsite.unc.edu
  80. Date: 2 Apr 1994 08:35:08 -0800
  81. From: craign@teleport.com (Craig R. Nelson)
  82. Message-Id: <2nk6rs$okn@linda.teleport.com>
  83. Organization: Teleport - Portland's Public Access (503) 220-1016
  84. Sender: ses
  85. References: <stevenmz.38.0017996A@teleport.com>
  86. Subject: Re: WINSOCK.DLL - Error Code 10093 and WSAStartUp()
  87.  
  88. Steve
  89.  
  90. How are you calling WSAStartup() ? The proper parameters ahould be the 
  91. desired version of WINSOCK and a WSADATA structure. For Pascal it would 
  92. look something like this:
  93.  
  94. const
  95.  
  96.  WSADESCRIPTION_LEN  = 256;
  97.  WSASYS_STATUS_LEN   = 128;
  98.  
  99.  
  100. Type
  101.  
  102.  PWSAData = ^TWSAData;
  103.  TWSAData = Record
  104.     wVersion         : Word;
  105.     wHighVersion     : Word;
  106.     szDescription    : Array[0..WSADESCRIPTION_LEN] of char;
  107.     szSystemStatus   : Array[0..WSASYS_STATUS_LEN] of char;
  108.     iMaxSockets      : u_short;
  109.     iMaxUdpDg        : u_short;
  110.     lpVendorInfo     : ^Char;
  111.  end;
  112.  
  113. var wsaData : TWSAData;
  114.     errCode : Integer;
  115.  
  116. begin
  117.  
  118.   errCode := WSAStartup( $0101, wsaData );
  119.   .. process any errors ..
  120. end.
  121.  
  122.  
  123. Hope this helps. We keep this up and we're going to have to get a 
  124. teleport.internet.programmer newsgroup going :)
  125.  
  126.  
  127. -- 
  128. craign@teleport.COM  Public Access User --- Not affiliated with TECHbooks
  129. Public Access UNIX and Internet at (503) 220-1016 (1200/2400, N81)
  130. From news@bigblue.oit.unc.edu Sat Apr  2 17:22:30 1994
  131. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  132.           id AA08521; Sat, 2 Apr 1994 16:12:14 -0500
  133. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  134.           id AA16062; Sat, 2 Apr 1994 16:07:15 -0500
  135. Received: from GATEWAY by bigblue with netnews
  136.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  137. To: winsock@sunsite.unc.edu
  138. Date: Sat, 2 Apr 1994 17:22:30 +0000
  139. From: JdB@perfect.demon.co.uk (Johan de Bruin)
  140. Message-Id: <765307350snz@perfect.demon.co.uk>
  141. Organization: Perfect Solutions
  142. Sender: ses
  143. Reply-To: JdB@perfect.demon.co.uk
  144. Subject: Setting up system
  145.  
  146. Hi All
  147.  
  148. I have a problem (who doesn't?)
  149.  
  150. I have been monitoring this newsgroup for about a week now, but
  151. nobody seems to have discussed my problem(s) yet!
  152.  
  153. Problem:
  154. Help needed with setting up a/any version of Gopher/Archiw/WWW etc to run
  155. under Windows
  156. Specifically:
  157.  - Which Windows version? (I have been able to figure out that it MUST be
  158.    WfW3.11)
  159.  - Which protocols do you have to load?
  160.  - Which network drivers do you have to have
  161.  - Is it possible to do so without actually having a network card installed?
  162.  - If not, and a card is provided, MUST it be connected up to a valid network?
  163.    (You've got it, I do use WfW3.11, but no network!)
  164.  - I have the necessary Windows programs, and what I believe to be the
  165.    proper WINSOCK.DLL, but keep on getting a message that all the libraries
  166.    are not present etc. etc.
  167.  
  168. DOS is frustrating me, right now WINDOWS is killing me!!
  169. All you wonderful people that:
  170.  a) have it up & running
  171.  b) program these nice utilities
  172. HELP HELP HELP please.
  173.  
  174. -- 
  175. Johan de Bruin
  176. Internet    : jdb@perfect.demon.co.uk
  177. Compu$erve  : 70613.167@compuserve.com
  178. Perfect Solutions BBS @ Coventry 0203-362968
  179. Operational every day 23:00 - 06:30
  180.  
  181.